In [1]:
import numpy as np
import pandas as pd
from pandas_profiling import ProfileReport
In [2]:
df_matches = pd.read_csv("C:\\Users\\mohd taufique\\Downloads\\Indian Premier League\\matches.csv")
In [3]:
df_deliveries = pd.read_csv(r"C:\Users\mohd taufique\Downloads\Indian Premier League\deliveries.csv")
In [5]:
#Generating Report using pandas profiling
out=ProfileReport(df_matches)
out.to_notebook_iframe()
In [6]:
#Generating Report using pandas profiling
out=ProfileReport(df_deliveries)
out.to_notebook_iframe()

Thank You!